home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / vbasic / bv0442.exe / MAKEFILE < prev   
Text File  |  1991-05-10  |  455b  |  22 lines

  1. !IFDEF NDEBUG
  2. linkops=/NOD/ALIGN:16
  3. compilops=-Asnw -Gsw -c -Oas -Zp -W2
  4. !ELSE
  5. linkops=/NOD/ALIGN:16/CO
  6. compilops=-Asnw -Gsw -c -Odas -Zpei -W2
  7. !ENDIF
  8.  
  9. !IFDEF MAP
  10. map=hugearr.map
  11. !ELSE
  12. map=nul
  13. !ENDIF
  14.  
  15. hugearr.dll: hugearr.obj hugearr.def
  16.     link $(linkops) libentry+hugearr, hugearr.dll, $(map), libw+sdllcew, hugearr
  17.     rc hugearr.dll
  18.     copy hugearr.dll c:\windows
  19.  
  20. hugearr.obj: hugearr.c hugearr.h
  21.     cl $(compilops) hugearr.c
  22.